How to Show and Hide Password in React Native ?
In this article, we’ll see how we can add password show and hide features in React Native applications....
read more
How to Change the Color of an SVG Element in React Native ?
In this article, we are going to learn about changing the color of an SVG by using React Native. SVG stands for Scalable Vector Graphics. It basically defines vector-based graphics in XML format. SVG graphics do NOT lose any quality if they are zoomed or resized. Changing the color of an SVG in React Native involves modifying the fill or stroke properties of the SVG elements to dynamically adjust their appearance based on user interactions or data....
read more
How to Get Only Numeric Values in TextInput Field in React Native ?
Text input fields play a vital role in React Native applications, facilitating use­r interactions. However, ce­rtain situations demand restricting input to numeric value­s exclusively. In this article, we will de­lve into two distinct approaches to achieving this de­sired functionality....
read more
How to Create Skeleton Loading in React Native ?
React Native is a popular framework for cross-platform mobile app development. In this ​article we are going to create a skeleton loading effect in React Native, visually indicating content loading to inform users while data is fetched....
read more
How to Generate Random Numbers in React Native ?
Generating random numbers is a fundamental aspect of React Native development. It enables various functionalities like generating game elements, creating unique identifiers, and implementing randomized UI components. In this article, we are going to see how we can generate a random number by using React Native....
read more
Delete an Element on Swipe in React Native
Swipe ge­stures have become prevalent for interacting with mobile­ apps, providing a convenient way to dele­te items from a list. In this article, we’ll explore how to add a “Swipe to Delete” feature in a React Native app using the react-native-swipe-list-view library....
read more
How to Copy Text to the Clipboard in React Native ?
Mobile app de­velopment requires enabling text copying to the clipboard for se­amless content sharing and improved use­r experience­. A popular cross-platform framework, React Native, offers a solution to this common requirement. This article will guide develope­rs through implementing clipboard functionality using the @re­act-native-clipboard/clipboard package. By handling text input, utilizing the Clipboard API, and providing user feedback, users can effortlessly copy and share text within or across applications. Enhancing usability and empowering users to interact efficiently with content in Re­act Native apps only requires a few lines of code....
read more
Create an Expandable ListView in React Native
In this article, we will delve into creating a Collapsible Accordion in Re­act Native. This pattern facilitates user inte­raction with a list of items by allowing them to expand or collapse­ each item to reveal or hide additional content....
read more
How to Create a Basic Notes App using React Native ?
In this article, we’ll walk you through the process of building a basic notes app using React Native. The application enables users to effortlessly create, edit, and delete­ notes, providing an uncomplicated yet impactful introduction to Re­act Native’s mobile app development capabilities....
read more
How to Create Emoji Picker in React Native ?
React Native is a popular cross-platform framework for mobile app development. Emojis have become common in modern applications, providing personalization and enhancing user engagement. In this article, we’ll see how we can add an emoji picker to a React Native application....
read more
Create a Stop Watch using React Native
React Native simplifies cross-platform app development for iOS, Android, and the web using a single codebase. Install Node.js, Expo CLI, and leverage Expo’s seamless experience for creating high-performance apps....
read more
How to Convert an Expo App to Apk in React Native for Android
React Native is a cross-platform application that is used to build Android as well as IOS applications. It uses JavaScript as the standalone language for development. It is a JavaScript framework based on React, an open-source library that makes React native easy to learn. In this article, we will see how to convert an expo app to Apk in React-Native. Expo is used to run your React Native applications....
read more